2.4.2. Hystrix Dashboard

Hystrix监控

除了隔离依赖服务的调用以外,Hystrix还提供了近实时的监控,Hystrix会实时、累加地记录所有关于HystrixCommand的执行信息,包括每秒执行多少请求多少成功,多少失败等。Netflix通过hystrix-metrics-event-stream项目实现了对以上指标的监控。

上文提到的microservice-consumer-movie-ribbon-with-hystrix项目已经具备对Hystrix监控的能力,下面我们进入测试。

测试步骤

  1. 启动:microservice-discovery-eureka

  2. 启动:microservice-provider-user

  3. 启动:microservice-consumer-movie-ribbon-with-hystrix

  4. 访问:http://localhost:8011/ribbon/1,注意:该步骤不能省略,因为如果应用的所有接口都未被调用,将只会看到一个ping

  5. 访问:http://localhost:8011/hystrix.stream,可以看到类似如下输出:

    1. data: {"type":"HystrixCommand","name":"findById","group":"RibbonHystrixService","currentTime":1472658867784,"isCircuitBreakerOpen":false,"errorPercentage":0,"errorCount":0,"requestCount":0,"rollingCountBadRequests":0....}

并且会不断刷新以获取实时的监控数据。但是纯文字的输出可读性实在是太差,运维人员很难一眼看出系统当前的运行状态。那么是不是有可视化的工具呢?

Hystrix Dashboard

Hystrix Dashboard可以可视化查看实时监控数据。我们可以下载hystrix-dashboard的war包部署到诸如Tomcat之类的容器中,本文不做赘述。另外Spring Cloud也提供了Hystrix Dashboard的整合,下面我们看看Spring Cloud是怎么玩转Hystrix Dashboard的。

新建一个maven项目,在pom.xml中添加如下内容:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <artifactId>microservice-hystrix-dashboard</artifactId>
  6. <packaging>jar</packaging>
  7. <parent>
  8. <groupId>com.itmuch.cloud</groupId>
  9. <artifactId>spring-cloud-microservice-study</artifactId>
  10. <version>0.0.1-SNAPSHOT</version>
  11. </parent>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.cloud</groupId>
  15. <artifactId>spring-cloud-starter-hystrix-dashboard</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-actuator</artifactId>
  20. </dependency>
  21. </dependencies>
  22. </project>

编写启动类:HystrixDashboardApplication.java

  1. /**
  2. * 测试步骤:
  3. * 1. 访问http://localhost:8030/hystrix.stream 可以查看Dashboard
  4. * 2. 在上面的输入框填入: http://想监控的服务:端口/hystrix.stream进行测试
  5. * 注意:首先要先调用一下想监控的服务的API,否则将会显示一个空的图表.
  6. * @author eacdy
  7. */
  8. @SpringBootApplication
  9. @EnableHystrixDashboard
  10. public class HystrixDashboardApplication {
  11. public static void main(String[] args) {
  12. new SpringApplicationBuilder(HystrixDashboardApplication.class).web(true).run(args);
  13. }
  14. }

配置文件:application.yml

  1. spring:
  2. application:
  3. name: hystrix-dashboard
  4. server:
  5. port: 8030

启动后,访问http://localhost:8030/hystrix.stream将会看到如下界面:

Hystrix Dashboard

此时,我们在输入框中输入http://localhost:8011/hystrix.stream,并随意设置一个Title后,点击Monitor Stream按钮,会出现如下界面:

Hystrix Dashboard 监控

此时我们会看到findById这个API的各种指标。Hystrix Dashboard Wiki上详细说明了图上每个指标的含义,如下图:

Hystrix Dashboard pic description

此时,我们可以尝试将microservice-provider-user停止,然后重复访问多次http://localhost:8011/ribbon/1(20次以上),会发现断路器状态会变为开启。

代码地址(任选其一):

http://git.oschina.net/itmuch/spring-cloud-study/tree/master/microservice-hystrix-dashboard

https://github.com/eacdy/spring-cloud-study/tree/master/microservice-hystrix-dashboard

TIPS

  1. Hystrix的监控数据默认是保存在每个实例的内存中的,Spring Boot提供了多种方式,可以导入到Redis、TSDB以供日后分析使用。

  2. 我们启动前文的microservice-consumer-movie-feign-with-hystrix项目后发现其访问localhost:8021/hystrix.stream ,是404,查看pom.xml依赖树,发现其没有依赖hystrix-metrics-event-stream项目。故而添加依赖:

    1. <!-- 整合hystrix,其实feign中自带了hystrix,引入该依赖主要是为了使用其中的hystrix-metrics-event-stream,用于dashboard -->
    2. <dependency>
    3. <groupId>org.springframework.cloud</groupId>
    4. <artifactId>spring-cloud-starter-hystrix</artifactId>
    5. </dependency>

    并在启动类上添加@EnableCircuitBreaker 注解即可。详见项目microservice-consumer-movie-feign-with-hystrix-stream,因为这不是本文的讨论重点,故而只做扩展阅读。

    microservice-consumer-movie-feign-with-hystrix-stream 代码地址(二选一):

    https://github.com/eacdy/spring-cloud-study/tree/master/microservice-consumer-movie-feign-with-hystrix-stream

    https://git.oschina.net/itmuch/spring-cloud-study/tree/master/microservice-consumer-movie-feign-with-hystrix-stream